type compress/flate.byFreq
7 uses
compress/flate (current package)
huffman_code.go#L23: lfs byFreq // stored to avoid repeated allocation in generate
huffman_code.go#L325: type byFreq []literalNode
huffman_code.go#L327: func (s *byFreq) sort(a []literalNode) {
huffman_code.go#L328: *s = byFreq(a)
huffman_code.go#L332: func (s byFreq) Len() int { return len(s) }
huffman_code.go#L334: func (s byFreq) Less(i, j int) bool {
huffman_code.go#L341: func (s byFreq) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |